home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / perl5 / Term / ReadKey.pm
Text File  |  2008-11-13  |  16KB  |  566 lines

  1. #
  2. #  $Id: ReadKey.pm,v 2.23 2005/01/11 21:16:31 jonathan Exp $
  3. #
  4.  
  5. =head1 NAME
  6.  
  7. Term::ReadKey - A perl module for simple terminal control
  8.  
  9. =head1 SYNOPSIS
  10.  
  11.     use Term::ReadKey;
  12.     ReadMode 4; # Turn off controls keys
  13.     while (not defined ($key = ReadKey(-1))) {
  14.         # No key yet
  15.     }
  16.     print "Get key $key\n";
  17.     ReadMode 0; # Reset tty mode before exiting
  18.  
  19. =head1 DESCRIPTION
  20.  
  21. Term::ReadKey is a compiled perl module dedicated to providing simple
  22. control over terminal driver modes (cbreak, raw, cooked, etc.,) support for
  23. non-blocking reads, if the architecture allows, and some generalized handy
  24. functions for working with terminals. One of the main goals is to have the
  25. functions as portable as possible, so you can just plug in "use
  26. Term::ReadKey" on any architecture and have a good likelihood of it working.
  27.  
  28. =over 8
  29.  
  30. =item ReadMode MODE [, Filehandle]
  31.  
  32. Takes an integer argument, which can currently be one of the following 
  33. values:
  34.  
  35.     0    Restore original settings.
  36.     1    Change to cooked mode.
  37.     2     Change to cooked mode with echo off. 
  38.           (Good for passwords)
  39.     3    Change to cbreak mode.
  40.     4    Change to raw mode.
  41.     5    Change to ultra-raw mode. 
  42.           (LF to CR/LF translation turned off) 
  43.           
  44.     Or, you may use the synonyms:
  45.     
  46.     restore
  47.     normal
  48.     noecho
  49.     cbreak
  50.     raw
  51.     ultra-raw
  52.  
  53. These functions are automatically applied to the STDIN handle if no
  54. other handle is supplied. Modes 0 and 5 have some special properties
  55. worth mentioning: not only will mode 0 restore original settings, but it
  56. cause the next ReadMode call to save a new set of default settings. Mode
  57. 5 is similar to mode 4, except no CR/LF translation is performed, and if
  58. possible, parity will be disabled (only if not being used by the terminal,
  59. however. It is no different from mode 4 under Windows.)
  60.  
  61. If you are executing another program that may be changing the terminal mode,
  62. you will either want to say
  63.  
  64.     ReadMode 1
  65.     system('someprogram');
  66.     ReadMode 1;
  67.     
  68. which resets the settings after the program has run, or:
  69.  
  70.     $somemode=1;
  71.     ReadMode 0;
  72.     system('someprogram');
  73.     ReadMode 1;
  74.     
  75. which records any changes the program may have made, before resetting the
  76. mode.
  77.  
  78. =item ReadKey MODE [, Filehandle]
  79.  
  80. Takes an integer argument, which can currently be one of the following 
  81. values:
  82.  
  83.     0    Perform a normal read using getc
  84.     -1   Perform a non-blocked read
  85.     >0     Perform a timed read
  86.  
  87. (If the filehandle is not supplied, it will default to STDIN.) If there is
  88. nothing waiting in the buffer during a non-blocked read, then undef will be
  89. returned. Note that if the OS does not provide any known mechanism for
  90. non-blocking reads, then a C<ReadKey -1> can die with a fatal error. This
  91. will hopefully not be common.
  92.  
  93. If MODE is greater then zero, then ReadKey will use it as a timeout value in
  94. seconds (fractional seconds are allowed), and won't return C<undef> until
  95. that time expires. (Note, again, that some OS's may not support this timeout
  96. behaviour.) If MODE is less then zero, then this is treated as a timeout
  97. of zero, and thus will return immediately if no character is waiting. A MODE
  98. of zero, however, will act like a normal getc.
  99.  
  100. There are currently some limitations with this call under Windows. It may be
  101. possible that non-blocking reads will fail when reading repeating keys from
  102. more then one console.
  103.  
  104. =item ReadLine MODE [, Filehandle]
  105.  
  106. Takes an integer argument, which can currently be one of the following 
  107. values:
  108.  
  109.     0    Perform a normal read using scalar(<FileHandle>)
  110.     -1   Perform a non-blocked read
  111.     >0     Perform a timed read
  112.  
  113. If there is nothing waiting in the buffer during a non-blocked read, then
  114. undef will be returned. Note that if the OS does not provide any known
  115. mechanism for non-blocking reads, then a C<ReadLine 1> can die with a fatal
  116. error. This will hopefully not be common. Note that a non-blocking test is
  117. only performed for the first character in the line, not the entire line.
  118. This call will probably B<not> do what you assume, especially with
  119. ReadMode's higher then 1. For example, pressing Space and then Backspace
  120. would appear to leave you where you started, but any timeouts would now
  121. be suspended.
  122.  
  123. This call is currently not available under Windows.
  124.  
  125. =item GetTerminalSize [Filehandle]
  126.  
  127. Returns either an empty array if this operation is unsupported, or a four
  128. element array containing: the width of the terminal in characters, the
  129. height of the terminal in character, the width in pixels, and the height in
  130. pixels. (The pixel size will only be valid in some environments.)
  131.  
  132. Under Windows, this function must be called with an "output" filehandle,
  133. such as STDOUT, or a handle opened to CONOUT$.
  134.  
  135. =item SetTerminalSize WIDTH,HEIGHT,XPIX,YPIX [, Filehandle]
  136.  
  137. Return -1 on failure, 0 otherwise. Note that this terminal size is only for
  138. B<informative> value, and changing the size via this mechanism will B<not>
  139. change the size of the screen. For example, XTerm uses a call like this when
  140. it resizes the screen. If any of the new measurements vary from the old, the
  141. OS will probably send a SIGWINCH signal to anything reading that tty or pty.
  142.  
  143. This call does not work under Windows.
  144.  
  145. =item GetSpeeds [, Filehandle]
  146.  
  147. Returns either an empty array if the operation is unsupported, or a two
  148. value array containing the terminal in and out speeds, in B<decimal>. E.g,
  149. an in speed of 9600 baud and an out speed of 4800 baud would be returned as
  150. (9600,4800). Note that currently the in and out speeds will always be
  151. identical in some OS's. No speeds are reported under Windows.
  152.  
  153. =item GetControlChars [, Filehandle]
  154.  
  155. Returns an array containing key/value pairs suitable for a hash. The pairs
  156. consist of a key, the name of the control character/signal, and the value
  157. of that character, as a single character. This call does nothing under Windows.
  158.  
  159. Each key will be an entry from the following list:
  160.  
  161.     DISCARD
  162.     DSUSPEND
  163.     EOF
  164.     EOL
  165.     EOL2
  166.     ERASE
  167.     ERASEWORD
  168.     INTERRUPT
  169.     KILL
  170.     MIN
  171.     QUIT
  172.     QUOTENEXT
  173.     REPRINT
  174.     START
  175.     STATUS
  176.     STOP
  177.     SUSPEND
  178.     SWITCH
  179.     TIME
  180.  
  181. Thus, the following will always return the current interrupt character,
  182. regardless of platform.
  183.  
  184.     %keys = GetControlChars;
  185.     $int = $keys{INTERRUPT};
  186.  
  187. =item SetControlChars [, Filehandle]
  188.  
  189. Takes an array containing key/value pairs, as a hash will produce. The pairs
  190. should consist of a key that is the name of a legal control
  191. character/signal, and the value should be either a single character, or a
  192. number in the range 0-255. SetControlChars will die with a runtime error if
  193. an invalid character name is passed or there is an error changing the
  194. settings. The list of valid names is easily available via
  195.  
  196.     %cchars = GetControlChars();
  197.     @cnames = keys %cchars;
  198.  
  199. This call does nothing under Windows.
  200.  
  201. =back
  202.  
  203. =head1 AUTHOR
  204.  
  205. Kenneth Albanowski <kjahds@kjahds.com>
  206.  
  207. Currently maintained by Jonathan Stowe <jns@gellyfish.com>
  208.  
  209. =cut
  210.  
  211. package Term::ReadKey;
  212.  
  213. $VERSION = '2.30';
  214.  
  215. require Exporter;
  216. require AutoLoader;
  217. require DynaLoader;
  218. use Carp;
  219.  
  220. @ISA = qw(Exporter AutoLoader DynaLoader);
  221.  
  222. # Items to export into callers namespace by default
  223. # (move infrequently used names to @EXPORT_OK below)
  224.  
  225. @EXPORT = qw(
  226.   ReadKey
  227.   ReadMode
  228.   ReadLine
  229.   GetTerminalSize
  230.   SetTerminalSize
  231.   GetSpeed
  232.   GetControlChars
  233.   SetControlChars
  234. );
  235.  
  236. @EXPORT_OK = qw();
  237.  
  238. bootstrap Term::ReadKey;
  239.  
  240. # Preloaded methods go here.  Autoload methods go after __END__, and are
  241. # processed by the autosplit program.
  242.  
  243. # Should we use LINES and COLUMNS to try and get the terminal size?
  244. # Change this to zero if you have systems where these are commonly
  245. # set to erroneous values. (But if either are nero zero, they won't be
  246. # used anyhow.)
  247.  
  248. $UseEnv = 1;
  249.  
  250. %modes = (
  251.     original    => 0,
  252.     restore     => 0,
  253.     normal      => 1,
  254.     noecho      => 2,
  255.     cbreak      => 3,
  256.     raw         => 4,
  257.     'ultra-raw' => 5
  258. );
  259.  
  260. sub ReadMode
  261. {
  262.     my ($mode) = $modes{ $_[0] };
  263.     my ($fh) = normalizehandle( ( @_ > 1 ? $_[1] : \*STDIN ) );
  264.     if ( defined($mode) ) { SetReadMode( $mode, $fh ) }
  265.     elsif ( $_[0] =~ /^\d/ ) { SetReadMode( $_[0], $fh ) }
  266.     else { croak("Unknown terminal mode `$_[0]'"); }
  267. }
  268.  
  269. sub normalizehandle
  270. {
  271.     my ($file) = @_;
  272.  
  273.     #    print "Handle = $file\n";
  274.     if ( ref($file) ) { return $file; }    # Reference is fine
  275.  
  276.     #    if($file =~ /^\*/) { return $file; } # Type glob is good
  277.     if ( ref( \$file ) eq 'GLOB' ) { return $file; }    # Glob is good
  278.  
  279.     #    print "Caller = ",(caller(1))[0],"\n";
  280.     return \*{ ( ( caller(1) )[0] ) . "::$file" };
  281. }
  282.  
  283. sub GetTerminalSize
  284. {
  285.     my ($file) = normalizehandle( ( @_ > 1 ? $_[1] : \*STDOUT ) );
  286.     my (@results) = ();
  287.     my (@fail);
  288.  
  289.     if ( &termsizeoptions() & 1 )                       # VIO
  290.     {
  291.         @results = GetTermSizeVIO($file);
  292.         push( @fail, "VIOGetMode call" );
  293.     }
  294.     elsif ( &termsizeoptions() & 2 )                    # GWINSZ
  295.     {
  296.         @results = GetTermSizeGWINSZ($file);
  297.         push( @fail, "TIOCGWINSZ ioctl" );
  298.     }
  299.     elsif ( &termsizeoptions() & 4 )                    # GSIZE
  300.     {
  301.         @results = GetTermSizeGSIZE($file);
  302.         push( @fail, "TIOCGSIZE ioctl" );
  303.     }
  304.     elsif ( &termsizeoptions() & 8 )                    # WIN32
  305.     {
  306.         @results = GetTermSizeWin32($file);
  307.         push( @fail, "Win32 GetConsoleScreenBufferInfo call" );
  308.     }
  309.     else
  310.     {
  311.         @results = ();
  312.     }
  313.  
  314.     if ( @results < 4 and $UseEnv )
  315.     {
  316.         my ($C) = defined( $ENV{COLUMNS} ) ? $ENV{COLUMNS} : 0;
  317.         my ($L) = defined( $ENV{LINES} )   ? $ENV{LINES}   : 0;
  318.         if ( ( $C >= 2 ) and ( $L >= 2 ) )
  319.         {
  320.             @results = ( $C + 0, $L + 0, 0, 0 );
  321.         }
  322.         push( @fail, "COLUMNS and LINES environment variables" );
  323.     }
  324.  
  325.     if ( @results < 4 )
  326.     {
  327.         my ($prog) = "resize";
  328.  
  329.         # Workaround for Solaris path sillyness
  330.         if ( -f "/usr/openwin/bin/resize" ) {
  331.             $prog = "/usr/openwin/bin/resize";
  332.         }
  333.  
  334.         my ($resize) = scalar(`$prog 2>/dev/null`);
  335.         if (
  336.             defined $resize
  337.             and (  $resize =~ /COLUMNS\s*=\s*(\d+)/
  338.                 or $resize =~ /setenv\s+COLUMNS\s+'?(\d+)/ )
  339.           )
  340.         {
  341.             $results[0] = $1;
  342.             if (   $resize =~ /LINES\s*=\s*(\d+)/
  343.                 or $resize =~ /setenv\s+LINES\s+'?(\d+)/ )
  344.             {
  345.                 $results[1] = $1;
  346.                 @results[ 2, 3 ] = ( 0, 0 );
  347.             }
  348.             else
  349.             {
  350.                 @results = ();
  351.             }
  352.         }
  353.         else
  354.         {
  355.             @results = ();
  356.         }
  357.         push( @fail, "resize program" );
  358.     }
  359.  
  360.     if ( @results != 4 )
  361.     {
  362.         warn "Unable to get Terminal Size."
  363.           . join( "", map( " The $_ didn't work.", @fail ) );
  364.     return undef;
  365.     }
  366.  
  367.     @results;
  368. }
  369.  
  370. if ( &blockoptions() & 1 )    # Use nodelay
  371. {
  372.     if ( &blockoptions() & 2 )    #poll
  373.     {
  374.         eval <<'DONE';
  375.         sub ReadKey {
  376.           my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  377.                   if (defined $_[0] && $_[0] > 0) {
  378.                     if ($_[0]) {
  379.                       return undef if &pollfile($File,$_[0]) == 0;
  380.                     }
  381.           }
  382.                   if (defined $_[0] && $_[0] < 0) {
  383.                      &setnodelay($File,1);
  384.                   }
  385.                   my ($value) = getc $File;
  386.                   if (defined $_[0] && $_[0] < 0) {
  387.                      &setnodelay($File,0);
  388.                   }
  389.                   $value;
  390.         }
  391.         sub ReadLine {
  392.           my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  393.  
  394.                   if (defined $_[0] && $_[0] > 0) {
  395.                      if ($_[0]) {
  396.                        return undef if &pollfile($File,$_[0]) == 0;
  397.                      }
  398.           }
  399.                   if (defined $_[0] && $_[0] < 0) {
  400.                      &setnodelay($File,1)
  401.                   };
  402.                   my ($value) = scalar(<$File>);
  403.                   if ( defined $_[0] && $_[0]<0 ) {
  404.                     &setnodelay($File,0)
  405.                   };
  406.                   $value;
  407.         }
  408. DONE
  409.     }
  410.     elsif ( &blockoptions() & 4 )    #select
  411.     {
  412.         eval <<'DONE';
  413.         sub ReadKey {
  414.           my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  415.                   if(defined $_[0] && $_[0]>0) {
  416.                 if($_[0]) {return undef if &selectfile($File,$_[0])==0}
  417.             }
  418.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,1);}
  419.             my($value) = getc $File;
  420.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,0);}
  421.             $value;
  422.         }
  423.         sub ReadLine {
  424.           my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  425.             if(defined $_[0] && $_[0]>0) {
  426.                 if($_[0]) {return undef if &selectfile($File,$_[0])==0}
  427.             }
  428.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,1)};
  429.             my($value)=scalar(<$File>);
  430.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,0)};
  431.             $value;
  432.         }
  433. DONE
  434.     }
  435.     else
  436.     {    #nothing
  437.         eval <<'DONE';
  438.         sub ReadKey {
  439.           my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  440.             if(defined $_[0] && $_[0]>0) {
  441.                 # Nothing better seems to exist, so I just use time-of-day
  442.                 # to timeout the read. This isn't very exact, though.
  443.                 $starttime=time;
  444.                 $endtime=$starttime+$_[0];
  445.                 &setnodelay($File,1);
  446.                 my($value)=undef;
  447.                 while(time<$endtime) { # This won't catch wraparound!
  448.                     $value = getc $File;
  449.                     last if defined($value);
  450.                 }
  451.                 &setnodelay($File,0);
  452.                 return $value;
  453.             }
  454.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,1);}
  455.             my($value) = getc $File;
  456.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,0);}
  457.             $value;
  458.         }
  459.         sub ReadLine {
  460.           my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  461.             if(defined $_[0] && $_[0]>0) {
  462.                 # Nothing better seems to exist, so I just use time-of-day
  463.                 # to timeout the read. This isn't very exact, though.
  464.                 $starttime=time;
  465.                 $endtime=$starttime+$_[0];
  466.                 &setnodelay($File,1);
  467.                 my($value)=undef;
  468.                 while(time<$endtime) { # This won't catch wraparound!
  469.                     $value = scalar(<$File>);
  470.                     last if defined($value);
  471.                 }
  472.                 &setnodelay($File,0);
  473.                 return $value;
  474.             }
  475.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,1)};
  476.             my($value)=scalar(<$File>);
  477.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,0)};
  478.             $value;
  479.         }
  480. DONE
  481.     }
  482. }
  483. elsif ( &blockoptions() & 2 )    # Use poll
  484. {
  485.     eval <<'DONE';
  486.     sub ReadKey {
  487.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  488.         if(defined $_[0] && $_[0] != 0) {
  489.                      return undef if &pollfile($File,$_[0]) == 0
  490.                 }
  491.         getc $File;
  492.     }
  493.     sub ReadLine {
  494.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  495.         if(defined $_[0] && $_[0]!=0) {
  496.                      return undef if &pollfile($File,$_[0]) == 0;
  497.                 }
  498.         scalar(<$File>);
  499.     }
  500. DONE
  501. }
  502. elsif ( &blockoptions() & 4 )    # Use select
  503. {
  504.     eval <<'DONE';
  505.     sub ReadKey {
  506.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  507.         if(defined $_[0] && $_[0] !=0 ) {
  508.                      return undef if &selectfile($File,$_[0])==0
  509.                 }
  510.         getc $File;
  511.     }
  512.     sub ReadLine {
  513.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  514.         if(defined $_[0] && $_[0] != 0) {
  515.                      return undef if &selectfile($File,$_[0]) == 0;
  516.                 }
  517.         scalar(<$File>);
  518.     }
  519. DONE
  520. }
  521. elsif ( &blockoptions() & 8 )    # Use Win32
  522. {
  523.     eval <<'DONE';
  524.     sub ReadKey {
  525.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  526.         if ($_[0]) {
  527.             Win32PeekChar($File, $_[0]);
  528.         } else {
  529.             getc $File;
  530.         }
  531.         #if ($_[0]!=0) {return undef if !Win32PeekChar($File, $_[0])};
  532.         #getc $File;
  533.     }
  534.     sub ReadLine {
  535.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  536.         #if ($_[0]!=0) {return undef if !Win32PeekChar($File, $_[0])};
  537.         #scalar(<$File>);
  538.         if($_[0]) 
  539.             {croak("Non-blocking ReadLine is not supported on this architecture")}
  540.         scalar(<$File>);
  541.     }
  542. DONE
  543. }
  544. else
  545. {
  546.     eval <<'DONE';
  547.     sub ReadKey {
  548.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  549.         if($_[0]) 
  550.             {croak("Non-blocking ReadKey is not supported on this architecture")}
  551.         getc $File;
  552.     }
  553.     sub ReadLine {
  554.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  555.         if($_[0]) 
  556.             {croak("Non-blocking ReadLine is not supported on this architecture")}
  557.         scalar(<$File>);
  558.     }
  559. DONE
  560. }
  561.  
  562. package Term::ReadKey;    # return to package ReadKey so AutoSplit is happy
  563. 1;
  564.  
  565. __END__;
  566.